home *** CD-ROM | disk | FTP | other *** search
/ AGA Toolkit '97 / The AGA Toolkit '97.iso / programming / c / dice2.06.37 / include / varargs.h < prev   
Encoding:
C/C++ Source or Header  |  1996-09-07  |  256 b   |  17 lines

  1.  
  2. /*
  3.  *  VARARGS.H
  4.  *
  5.  *  (c)Copyright 1990, Matthew Dillon, All Rights Reserved
  6.  */
  7.  
  8. #ifndef VARARGS_H
  9. #define VARARGS_H
  10. #ifndef STDARG_H
  11. #include <stdarg.h>
  12. #define va_dcl long va_alist;
  13. #define va_start(pvar)  (pvar = (void *)(&va_alist))
  14. #endif
  15. #endif
  16.  
  17.